These are the "core" functions, very similar to the other BASIC dialects.
Returns the absolute value of the argument v|n
Returns the arc cosine value of the argument v|n in radians
Returns the ASCII code for the first letter in the argument c|t
Returns the arc sine value of the argument v|n in radians
Returns the arc tangent value of the argument v|n in radians
Returns the cosine value of the argument v|n in radians
Converts the argument v|n (in radians) to degrees
Returns the exponential value of v|n
Returns the first free address:
in the Code Stack (v|n=0)
in the Number Stack (v|n=1)
or in the Text Stack (v|n=2)
or the last free address:
in the Code Stack(v|n=3)
in the Number Stack (v|n=4)
or in the Text Stack (v|n=5).
Notes:
Searches for text string c|t2 in c|t1, starting at position v|n in the first text string
Notes:
Returns the largest integer less than or equal to the argument v|n
Returns the length in bytes (number of characters) of c|t
Returns the decimal logarithm of the argument v|n
Returns the natural logarithm of the argument v|n
Returns the maximum value of v|n1 and v|n2
Returns the minimum value of v|n1 and v|n2
Returns the negation of the argument v|n
Returns the [0...65535] value at address v|n in the Code Stack which has to be in the range [1...FRE(3)]
Returns v|n1 raised to power of v|n2
Notes:
Converts the argument v|n (in degrees) to radians
Returns an integer pseudo-random number in the [0...v|n] range
Returns the nearest integer to the argument v|n
Returns the sign of the argument v|n, 1 for positive numbers, 0 for 0, and -1 for negative numbers
Returns the sine value of the argument v|n in radians
SQRT returns the square root of the argument v|n
Returns the tangent value of the argument v|n in radians
Returns the system ticks
Returns the number of ticks per second
Notes:
Returns the numerical value of c|t
Returns the binary-string value of argument v|n
Returns the v|n th character in text string c|t
Returns a one-character text string with the character corresponding to the ASCII code indicated by argument v|n
Returns the current date based on the computer's internal clock as a string in the form "DD/MM/YYYY"
Notes:
Returns the hexadecimal-string value of argument v|n
Returns c|t converted to lower case
Returns the v|n number of leftmost characters of c|t
Returns c|t after having removed leading blank spaces from c|t
Returns the v|n2 part (length) of the text string c|t starting from position v|n1
Returns the octal-string value of argument v|n
Returns the v|n number of rightmost characters of c|t
Returns c|t after having removed trailing blank spaces from c|t
Returns a text string of blank spaces v|n bytes (characters) long
Returns a text string giving the representation of the argument v|n1 with the number v|n2 of decimals to return
Note for 2nd argument (v|n2):
Returns the current time based on the computer's internal clock as a string in the form "HH:mm:ss"
Notes:
Returns c|t after having removed leading and trailing blank spaces from c|t
Returns c|t converted to upper case
Returns the v|n th word in text string c|t
Notes: